home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 February / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Klienci P2P / Multi / Shareaza 2.2.3.0 / Shareaza_2.2.3.0.exe / {app} / Schemas / subtitle.xsd < prev    next >
Extensible Markup Language  |  2006-07-23  |  2KB  |  67 lines

  1. ∩╗┐<?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <schema targetNamespace="http://www.shareaza.com/schemas/subtitle.xsd" xmlns="http://www.w3.org/2001/XMLSchema">
  4.  
  5.     <element name="subtitles">
  6.         <complexType>
  7.             <element name="subtitle" type="subtitleType" minOccurs="1" maxOccurs="unbounded"/>
  8.         </complexType>
  9.     </element>
  10.  
  11.     <complexType name="subtitleType">
  12.         <all>
  13.             <attribute name="title" type="string"/>
  14.             <attribute name="episodenumber" type="string"/>
  15.             <attribute name="seriesnumber" type="string"/>
  16.             <attribute name="description">
  17.                 <simpleType base="string">
  18.                     <maxInclusive value="1024"/>
  19.                 </simpleType>
  20.             </attribute>
  21.             <attribute name="realdescription">
  22.                 <simpleType base="string">
  23.                     <maxInclusive value="1024"/>
  24.                 </simpleType>
  25.             </attribute>
  26.             <attribute name="language">
  27.                 <simpleType base="string">
  28.                     <enumeration value="Danish"/>
  29.                     <enumeration value="English"/>
  30.                     <enumeration value="French"/>
  31.                     <enumeration value="German"/>
  32.                     <enumeration value="Italian"/>
  33.                     <enumeration value="Korean"/>
  34.                     <enumeration value="Japanese"/>
  35.                     <enumeration value="Mandarin"/>
  36.                     <enumeration value="Russian"/>
  37.                     <enumeration value="Spanish"/>
  38.                 </simpleType>
  39.             </attribute>
  40.             <attribute name="imdbLink" type="uriReference"/>
  41.             <attribute name="minutes" type="decimal"/>
  42.             <attribute name="year" type="year"/>
  43.             <attribute name="partNumber" type="int"/>
  44.             <attribute name="partCount" type="int"/>
  45.             <attribute name="quality">
  46.                 <simpleType base="string">
  47.                     <enumeration value="Very Good"/>
  48.                     <enumeration value="Good"/>
  49.                     <enumeration value="Standard"/>
  50.                     <enumeration value="Poor"/>
  51.                     <enumeration value="Very Poor"/>
  52.                 </simpleType>
  53.             </attribute>
  54.             <attribute name="qualityNotes" type="string"/>
  55.             <attribute name="releaseDate" type="string"/>
  56.             <attribute name="distributer" type="string"/>
  57.             <attribute name="distributerLink" type="uriReference"/>
  58.             <attribute name="releasegroup" type="string"/>
  59.             <attribute name="releasegroupLink" type="uriReference"/>
  60.             <attribute name="keywords" type="string"/>
  61.             <attribute name="link" type="uriReference"/>
  62.             <attribute name="SHA1" type="string"/>
  63.         </all>
  64.     </complexType>
  65.  
  66. </schema>
  67.